Learn R Programming

TitanCNA (version 1.10.0)

WIG Import Functions: WIG Import Functions

Description

Fast fixedStep WIG file reading and parsing

Usage

wigToRangedData(wigfile, verbose = TRUE)

Arguments

wigfile
Filepath to fixedStep WIG format file
verbose
Set to FALSE to suppress messages

Value

RangedData for wigToRangedData with chromosome and position information, sorted in decreasing chromosal size and increasing position.

Details

Reads the entire file into memory, then processes the file in rapid fashion, thus performance will be limited by memory capacity.

The WIG file is expected to conform to the minimal fixedStep WIG format (see References), where each chromsome is started by a “fixedStep” declaration line. The function assumes only a single track in the WIG file, and will ignore any lines before the first line starting with “fixedStep”.

References

WIG
http://genome.ucsc.edu/goldenPath/help/wiggle.html

See Also

wigToRangedData is a wrapper around these functions for easy WIG file loading and structure formatting. It is taken from the HMMcopy package.

Examples

Run this code
	map <- system.file("extdata", "map_chr2.wig", package = "TitanCNA")
	mScore <- as.data.frame(wigToRangedData(map))

Run the code above in your browser using DataLab